Foxit PDF Conversion SDK
extracted_comment.h
1
2237
/*
2238
Basic memory operations
2239
*/
2240
2241
/*
2242
Following base memory functions use default Foxit manager for current module
2243
*/
2244
2245
/*
2246
Macro definitions for File accessing modes
2247
*/
2248
2249
/*
2250
Byte string concatenation operation
2251
*/
2252
2253
/*
2254
Both side of the concatenation operator (+) can be:
2255
<ul>
2256
<li>
2257
A buffered byte string (const CFX_ByteString&);
2258
</li>
2259
<li>
2260
A non-buffered byte string (const CFX_ByteStringC&, a.k.a FX_BSTR);
2261
</li>
2262
<li>
2263
A zero-terminated C-style string (FX_LPCSTR);
2264
</li>
2265
<li>
2266
A single character or byte (FX_CHAR);
2267
</li>
2268
</ul>
2269
2270
*/
2271
2272
/*
2273
Wide string concatenation operation
2274
*/
2275
2276
/*
2277
Both side of the concatenation operator (+) can be:
2278
<ul>
2279
<li>
2280
A buffered wide string (const CFX_WideString&);
2281
</li>
2282
<li>
2283
A non-buffered wide string (const CFX_WideStringC&);
2284
</li>
2285
<li>
2286
A zero-terminated C-style wide string (FX_LPCWSTR);
2287
</li>
2288
<li>
2289
A single character (FX_WCHAR);
2290
</li>
2291
</ul>
2292
But you must have at least one CFX_WideString or CFX_WideStringC on one side.
2293
2294
*/
2295
2296
/*
2297
Wide string compare operation
2298
*/
2299
2300
/*
2301
Basic Unicode character attribute routines
2302
*/
2303
2304
/*
2305
text direction defines
2306
*/
2307
2308
/*
2309
Encode wide string into UTF-8 byte string
2310
*/
2311
2312
/*
2313
OS Defines
2314
*/
2315
2316
/*
2317
Compiler Defines
2318
*/
2319
2320
/*
2321
CPU Defines
2322
*/
2323
2324
/*
2325
Word Size Defines
2326
*/
2327
2328
/*
2329
Byte Order Defines
2330
*/
2331
2332
/*
2333
Target Defines
2334
*/
2335
2336
/*
2337
BASIC DATA TYPES
2338
*/
2339
2340
/*
2341
Byte string operations
2342
*/
2343
2344
/*
2345
File operations
2346
*/
2347
2348
/*
2349
Wide string operations
2350
*/
2351
2352
/*
2353
Memory block operations
2354
*/
2355
2356
/*
2357
Memory utilities
2358
*/
2359
2360
/*
2361
Math functions
2362
*/
2363
2364
@2026 Foxit Software Incorporated. All rights reserved.